* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.main-container {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    background-color: #f6fafa;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.header-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 50px 30px 50px;
    gap: 30px;
    flex-wrap: wrap;
}

.brand-area {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 250px;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    color: #1a3329;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 14px;
    color: #393f3c;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 4px;
}

.tagline img {
    height: 16px;
}

.links-container {
    display: flex;
    gap: 30px;
    flex: 3 1 600px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.link-col {
    display: flex;
    flex-direction: column;
    min-width: 140px;
    flex: 1;
}

.link-col h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1a3329;
    margin-bottom: 18px;
    letter-spacing: 0.1px;
}

.link-col a {
    text-decoration: none;
    color: #5a6b62;
    font-size: 13.5px;
    margin-bottom: 10px;
    transition: color 0.2s;
    cursor: pointer;
}

.link-col a:hover {
    color: #11261c;
}

.footer-contact p {
    font-size: 13px;
    color: #5a6b62;
    margin-bottom: 10px;
    line-height: 1.4;
}

.footer-contact i {
    color: #1a3329;
    margin-right: 6px;
}

.footer-note {
    font-size: 11px;
    color: #7b8f84;
}

.scenery-section {
    position: relative;
    width: 100%;
    height: 400px;
}

.bg-watermark {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14vw;
    font-weight: 800;
    color: rgba(62, 60, 60, 0.15);
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
    letter-spacing: -2px;
}

.landscape-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}

.footer-overlay-bar {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgb(242, 244, 243);
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.copyright-text {
    font-size: 12px;
    color: #5a6b62;
}

.social-icons {
    display: flex;
    gap: 18px;
}

.social-icons a {
    color: #4a5d54;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.2s;
}

.social-icons a:hover {
    color: #1a3329;
}

.footer-wrapper {
    background-color: #bce9da; /* Yeh wahi dark green color hai jo aapko pasand hai */
    width: 100%;
    padding: 30px 0;           /* Footer ke upar aur neeche green area ki padding */
    margin-top: 50px;          /* Upar wale content se thoda fasla rakhne ke liye */
}

/* MOBILE RESPONSIVE & CENTERED DESIGN */
@media (max-width: 768px) {
    .main-container {
        width: 95%;
        margin: 20px auto;
        border-radius: 16px;
    }
    .header-section {
        padding: 40px 20px 20px 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 35px;
    }
    .brand-area {
        align-items: center;
    }
    .logo-box {
        justify-content: center;
    }
    .tagline {
        justify-content: center;
        margin-left: 0;
    }
    .links-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        width: 100%;
    }
    .link-col {
        width: 100%;
        align-items: center;
    }
    .footer-contact {
        text-align: center;
    }
    .footer-contact p i {
        margin-right: 0;
        display: block;
        margin-bottom: 4px;
    }
    .scenery-section {
        height: 300px;
    }
    .footer-overlay-bar {
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 12px 15px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}






/* ======================================
     SCROLL TO TOP BUTTON — FIXED
====================================== */
#scrollTopBtn {
  position: fixed;
  right: 26px;
  bottom: 100px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ea4c89;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 18px;
  cursor: pointer;
  z-index: 999998;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.4) translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(234, 76, 137, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

#scrollTopBtn.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}

#scrollTopBtn:hover {
  background: #d6367a;
  box-shadow: 0 6px 28px rgba(234, 76, 137, 0.5);
  transform: scale(1.12) translateY(-2px);
}

#scrollTopBtn:active {
  transform: scale(0.92);
  box-shadow: 0 2px 10px rgba(234, 76, 137, 0.3);
}

#scrollTopBtn i {
  pointer-events: none;
  position: relative;
  top: 1px;
}

@media (max-width: 768px) {
  #scrollTopBtn {
    right: 14px;
    bottom: 90px;
    width: 46px;
    height: 46px;
    font-size: 16px;
  }
}